Quantcast
Channel: SCN: Message List
Viewing all 8676 articles
Browse latest View live

Re: Need help to modify Query for crystal report

$
0
0

Hi Hitul,

Please try below query

 

 

SELECT

    T0.ShortName, T1.CardName,

    T0.RefDate, T0.DueDate,

    T0.TransType, T0.Ref2, T2.DocNum,

    Case T0.TransType When  13 then T2.U_Suffix when 14 then T3.U_Suffix else 0 end,

    SUM(T0.BalDueDeb - T0.BalDueCred) AS AmtDue

FROM 

    dbo.JDT1 T0 INNER JOIN

    OCRD T1 ON T0.ShortName = T1.CardCode

LEFT OUTER JOIN OINV T2 ON T0.TransType =13 and  T0.TransId = T2.TransId
LEFT OUTER JOIN ORIN T3 ON T0.TransType =14 and  T0.TransId = T3.TransId
WHERET0.RefDate<='20150331' and

    (T0.ShortName = '{?@CustCode}')

GROUP BY

    T0.ShortName, T1.CardName,

    T0.RefDate, T0.TransType,

    T0.Ref2, T2.DocNum,

   T2.U_Suffix, T3.U_Suffix,

T0.DueDate

HAVING

    (SUM(T0.BalDueDeb - T0.BalDueCred) <> 0)

 

 

Thanks

Unnikrishnan


Re: Number of records mismatch between DSO and Infocube

$
0
0

Hi Els,

 

Since this DSO is taking from other 2 sub- DSO's. The records in active and change log table

are same - 9032.

 

Regards,

Shruti Yendigeri

Re: External address number on technical data

$
0
0

Hi William,

 

I have an address number which belongs to bp and I am taking it via web service. I need it on web_ui screen and I thought i can use ADEXT field for this external address number but as i told you before this field does not exist in available fields in configuration.


Regards.

Re: WD CATS Approval through MSS application for project manager

$
0
0

hi steven,

 

i have a requirment to pick the approver from the custom relationship,

 

how you done the enhancement,could you please share the process.

 

Thanks & Regards,

 

Pramodh.M

Re: return delivery for n number of migo documents(present able for 6 documents)

$
0
0

try to enter one material document  after the other in MIGO, to my memory it will add items from all referenced material documents.

The usual effect after entering the number and pressing enter is that the field becomes blank again for adding the next number.

Re: return delivery for n number of migo documents(present able for 6 documents)

$
0
0

Hi,

   In MBRL, you can cancel only one material document at a time. There is no multiple selection option in the MBRL selection screen in standard.

   It seems you are talking about the material document items. If so, its based on your pc screen resolution and GUI font size, how many items are displayed in the initial screen. However, you can press "page down" key in the keyboard, so that system will display the remaining items. You may check the same and revert back.

   As Jurgen already mentioned, train the users to use MIGO instead of MBRL, since MBXX transactions will be removed in the next release.

   Let us know if your question is different.

 

Regards,

AKPT

Re: FMS(Auto Refresh) to get Default Binlocation based on Warehouse

$
0
0

Hi Mr.Balan,

 

Thanks for your valuable reply. The above query is only working for GRPO and Sales Order only. Kindly give me the [ItemCode] and [Whsecode]  for Goods issue and Goods receipt in inventory transfer.

 

Hope for the best reply ASAP.

 

Thank You,

 

Regards,

Raviteja.G

issue with java mapping

$
0
0

Hi experts

 

i have a target structure like:

 

<?xml version="1.0" encoding="UTF-8"?><ns0:Mt_Vinguard_Response xmlns:ns0="http://Sample.ginger.com/Vinguard"><Status></Status></ns0:Mt_Vinguard_Response>


Mt_Vinguard_Response

         Status



in java maaping i have use this to get the value in Status field with a variable finalResponse:


String fresult= "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";

fresult = fresult.concat("<ns0:Mt_Vinguard_Response xmlns:ns0=\"http://Sample.ginger.com/Vinguard\">");

fresult = fresult.concat("<Status>");

fresult = fresult.concat(finalResponse);

fresult = fresult.concat("</Status>");

//absTraceLog.addDebugMessage("\n FinalResult-" + finalResponse );

fresult = fresult.concat("</ns0:Mt_Vinguard_Response>");


i want to know is the response structure correct??

the issue is when i dnt add logger in it, than it doesnt throw me error

but when  have added logger in the java code (in transform fuction and in other fuction ) it throws me error

that the structure us not well formed for the response.

i need to add logger to see in the java code why it's not working.

i m using dom parser


can anybody throw me li8 for this?











Re: Several WBS with different Company codes in One Project

$
0
0

I am not a PS expert, but check any other organisation assignments that you have in the WBS.  For example Plant.

 

Regards

 

Waza

Re: DOL lot required under Quality Inspection

$
0
0

Hi

 

kinldy check the dynamic modification rule for your query.

 

thanks in advance

Re: Nested Table Popins

$
0
0

As far as I can tell, it's not possible. You do not have the option to select a table popin inside of a table popin.

Re: Autofms for Total Sold item qty for the previous month  in PO

$
0
0

Hi Nagaraj

 

While saving FMS query an error message is displayed "SBO_SP_TransactionNotification must return a value"

 

 

Regards,

K.Ramasamy

How to read material# from the screen when creating PO

$
0
0

I've used the exit MM06E005 for adding custom fields at header and item levels on the purchase order screens. I want to populate certain custom fields at item level based on the material number entered by the user. I tried using DYNP_READ_VALUES but the FM is giving an error all the time even when I tried passing different values for DYNAME and DYNUMB. The FM is called from different screens in different situations, so i'm not sure what value to pass for DYNNR. Once i get the value of material number entered by the user at the current line item i want to read a z-table to populate the custom fields i've added. Below is my code written in the Items PAI function module EXIT_SAPMM06E_017:

 

data: scr_fields type table of dynpread WITH HEADER LINE.

 

scr_fields-fieldname = 'EMATN'.

append scr_fields.



CALL FUNCTION 'DYNP_VALUES_READ'

   EXPORTING

 

     DYNAME                               = 'SAPLXM06'

     DYNUMB                               = '0014'

*   TRANSLATE_TO_UPPER                   = ' '

*   REQUEST                              = ' '

*   PERFORM_CONVERSION_EXITS             = ' '

*   PERFORM_INPUT_CONVERSION             = ' '

*   DETERMINE_LOOP_INDEX                 = ' '

*   START_SEARCH_IN_CURRENT_SCREEN       = ' '

*   START_SEARCH_IN_MAIN_SCREEN          = ' '

*   START_SEARCH_IN_STACKED_SCREEN       = ' '

*   START_SEARCH_ON_SCR_STACKPOS         = ' '

*   SEARCH_OWN_SUBSCREENS_FIRST          = ' '

*   SEARCHPATH_OF_SUBSCREEN_AREAS        = ' '

  

TABLES

     DYNPFIELDS                           = scr_fields

 

   EXCEPTIONS

     INVALID_ABAPWORKAREA                 = 1

     INVALID_DYNPROFIELD                  = 2

     INVALID_DYNPRONAME                   = 3

     INVALID_DYNPRONUMMER                 = 4

     INVALID_REQUEST                      = 5

     NO_FIELDDESCRIPTION                  = 6

     INVALID_PARAMETER                    = 7

     UNDEFIND_ERROR                       = 8

     DOUBLE_CONVERSION                    = 9

     STEPL_NOT_FOUND                      = 10

     OTHERS                               = 11

           .

IF SY-SUBRC <> 0.

* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.


Any valuable leads will be greatly appreciated.

Re: To Find name of the fields

$
0
0

Actually i want to find the table name of each and every mentioned fields....

Re: Time dependent Hierarchy SAP BPC 10.1

$
0
0

Hi.

 

Did you try log off and login again to the web after you have enabled the parameters in SPRO?

 

Thanks,

Dinesh.V


Re: Time dependent Hierarchy SAP BPC 10.1

$
0
0

Yes, I have tried it, but no change.

Re: create a discount after changing the computer price

$
0
0

Dear Mr. Moazzam,

 

We've tried to make a discount after changing the price. We couldnot make a Discount.

We can change the price after discount but this will cancel the discount.

any advice!!!

 

What we need is to make a discount after changing the price.\

If that could happen, Would you please mention it step by step.

 

Thank you very much

 

Best Regards.

Re: Migration Sales order with billing plan

$
0
0

Dear Krishna,

 

Same situation was there in my earlier project regarding billing plan, where we took the mile stone against which payment received we took it as legacy and  and updated customer balance.

 

Open milestone/billing plan is only consider for moving open sales order and subsequent billing. However the we put a check on billing plan/ milestone which are already billed to customer as locked.

 

Hope this will help you some how.

 

My suggestion involve your FI & PS consultant and also business to have discussion.

 

Thanks.

 

Sumeet Sah

Re: SuccessFactors - Changing the user in form route map

$
0
0

Hi Ankita,

 

Thanks for the reply !  By any chance is there a way to create this new step in advance?

 

For instance the form is based on a 5 steps route map (4 is an approbation step, and 5 the signature).  The form is pending on the 2nd step and I need to change the user of the fourth step.

 

Withe the Change Form functionnality I can only replace the current step by a new one, is that right ?  Thus in the previous example, it means that I must wait the form to be on the fourth step to be able to move it to another one and change the target user.

 

Am I correct ?

 

Best regards

Hadrien

Delete request's entries

$
0
0

Hello,

 

I'm using the FM  TRINT_DELETE_COMM_OBJECT_KEYS to delete entries from transport requests after checking if the objects exist or not in table tadir.

 

This works fine, but after deleting the entries if I release the task the objects reappear. I don't know why !

 

Please help me solve this problem.

 

Thanks in advance

Viewing all 8676 articles
Browse latest View live




Latest Images