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

Re: How to find out list of Orders settled to AUC and AUCs settled to Main Asset?

$
0
0

Hi

The easiest way is through FBL3N .. you can extract your data to know what AUC has been settle and which order also

 

Regards

Mahmoud El nady


css class for Tab strip in 1.6

$
0
0

Hi guys

 

The tabStrip element in 1.6 m version looks a bit strainge

It headre area is very tall and I couldn't find how to change that via CSS or any other way

Please see in the attached screenshot

 

Any suggestions will be appreciated

 

11223344.PNG

 

Shlomi

Re: Functional Modules to get day of year based on Sy-datum

Re: BPC 10.0 SP20 : Carry-forward to the whole next year

$
0
0

"The Standard implementation allows the selection of more then one Destination period" - not sure, in the How-to Guide it's stated that only one Time period will be processed.

 

Vadim

Re: Can't find system in CSOL after refresh

$
0
0

Hello Omkar,

 

1. Can you please check for managed systems client in SMSY that RFC for change manager has to be TMW not TRUSTED. Not entirely sure this will resolve CSOL entry but this needs to be checked and correct first. you can make correction in LMDB also and it will synchronize down.

 

2. Another Option : Try to rum below program in managed system.

 

TMW_CONTROL_PROJECT_LOCK.

 

Activate project and then try.

 

Please check if this works or not.

 

Thanks

Gaurav Patel

Re: ABAP CDS View: odata service with no annotations

$
0
0

Hello Bert,

 

the metadata.xml does not contain the annotation information, because the annotation information is delivered in an own annotation file via a service call (e.g. "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Annotations(TechnicalName='<technical name of annotation service>',Version='<version of annotation service>')/$value/".

 

The UI.lineItem and UI.selectionField annotation are ok, but the @Search.* annotations are not released yet for customer usage (check note in Search Annotations - Reference - SAP Library).

 

Best Regards,

Florian

Re: screen on alv report

$
0
0

hi ,

 

below code wil help to display text on button.

 

 

REPORT ZDEMO2.

TYPES:BEGIN OF TY_FINAL,
        BUTTON TYPE C LENGTH 20,
        STYLE1 TYPE LVC_T_STYL,
       END OF TY_FINAL,
       TT_FINAL TYPE STANDARD TABLE OF TY_FINAL.

DATA:GO_CON TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
      GO_ALV TYPE REF TO CL_GUI_ALV_GRID.

DATA:GT_FINAL TYPE TT_FINAL,
      GS_FINAL TYPE TY_FINAL.

DATA:GT_FD TYPE LVC_T_FCAT,
      GS_FD TYPE LVC_S_FCAT.

DATA:GS_LAYOUT TYPE LVC_S_LAYO.

DATA:LS_STYL TYPE LVC_S_STYL.

START-OF-SELECTION.

CREATE OBJECT GO_CON
   EXPORTING
     CONTAINER_NAME              = 'EDIT_CON'
   EXCEPTIONS
     CNTL_ERROR                  = 1
     CNTL_SYSTEM_ERROR           = 2
     CREATE_ERROR                = 3
     LIFETIME_ERROR              = 4
     LIFETIME_DYNPRO_DYNPRO_LINK = 5
     OTHERS                      = 6.


CREATE OBJECT GO_ALV
   EXPORTING
     I_PARENT          = GO_CON
   EXCEPTIONS
     ERROR_CNTL_CREATE = 1
     ERROR_CNTL_INIT   = 2
     ERROR_CNTL_LINK   = 3
     ERROR_DP_CREATE   = 4
     OTHERS            = 5.

CLEAR LS_STYL.
LS_STYL-FIELDNAME = 'BUTTON'.
LS_STYL-STYLE = CL_GUI_ALV_GRID=>MC_STYLE_BUTTON.



CLEAR GS_FINAL.
GS_FINAL-BUTTON = 'CLICK'.
APPEND LS_STYL TO GS_FINAL-STYLE1.
APPEND GS_FINAL TO GT_FINAL.

CLEAR GS_FINAL.
GS_FINAL-BUTTON = 'CLICK'.
APPEND LS_STYL TO GS_FINAL-STYLE1.
APPEND GS_FINAL TO GT_FINAL.

CLEAR GS_FD.
GS_FD-FIELDNAME = 'BUTTON'.
GS_FD-SCRTEXT_L = 'BUTTON'.
APPEND GS_FD TO GT_FD.


GS_LAYOUT-STYLEFNAME = 'STYLE1'.


CALL METHOD GO_ALV->SET_TABLE_FOR_FIRST_DISPLAY
   EXPORTING
     IS_LAYOUT                     = GS_LAYOUT
   CHANGING
     IT_OUTTAB                     = GT_FINAL
     IT_FIELDCATALOG               = GT_FD
   EXCEPTIONS
     INVALID_PARAMETER_COMBINATION = 1
     PROGRAM_ERROR                 = 2
     TOO_MANY_LINES                = 3
     OTHERS                        = 4.


CALL SCREEN 100.

Re: SMP native IOS Application run call afaria client

$
0
0

Hi Kael,

 

The SDK, by default uses Afaria.

You can disable it by setting the keyMAFUseAfaria to NO in the MAFLogonUING.bundle of the SDK.

 

Hope this resolves the issue.

 

Regards,

Ram


Re: screen on alv report

C4C Enhancing Quote Product Item with Embeded Component

$
0
0

Hi All,

I am enhancing Sales Quote Product Item with customer BO using EC following the guide Add custom BO to standards screen

provided by Stefan Krauth see below for detailed explanation how I created the BO and EC.

For some reason whenever I change the item it is not triggering the UIID change, from my perspective some initialization is missing but I am not sure how should I do it.

Thanks in advance.

Here is my BODL:

businessobject ProductVariant {
[AlternativeKey][Label("Varinat Identificator")] element variantID:ID;      //NUMC 10"
[AlternativeKey][Label("Quotation Item UUID")] element QuoteItemUUID:UUID;
[Label("Product Id")] element productID:apCommonGDT:ProductInternalID;
association ToMaterial[1,1] to Material;
node Characteristics [0,n]{                [Label("Internal characteristic")] element atinnInternalCharacteristics:ID; //NUMC  10                            [Label("Characteristic Name")] element atnamCharacteristicsName:LANGUAGEINDEPENDENT_MEDIUM_Text; //CHAR             30                            node CharacteristicValues [0,n]{                                [Label("Internal characteristic")] element atinnInternalCharacteristics:ID; //NUMC 10                                             [Label("Int counter")] element atzhlInternalCharacteristics:BusinessTransactionDocumentItemScheduleLineID;//NUMC 4                                [Label("Characteristic Value")] element atwrtCharacteristicsValue:LANGUAGEINDEPENDENT_MEDIUM_Text;//CHAR 30                                [Label("Characteristic value description")] element atwtbCharacteristicsDescription:MEDIUM_Name;//CHAR 30                }
}
}               

The screen looks like

BO screen.png

Data Model

Data Model.png

InPort

InPort.png

Event

Event1.png

Event2.png

Event3.png


I am adding EC to screen : BYD_COD/SalesOnDemand/Quote/COD_QuoteTI.TI.uicomponet:


EcPlace.png

in the following Container:

ECContainer.png

Using Binding :

AddEC.png

TheBind.png

And here is the Test case:

TestHead.png


When there is one item everything looks fine

TestOneItem.png

But when they are two : Bind is not working

TestTwoItem.png

 













Re: Form template maintenance - unable to edit forms

Re: Work Order creation restriction without Notification

$
0
0

Hi Jogeswara Rao,

 

The code you mentioned above will work during saving of work order? or on the initial screen of work order creation itself?

 

We need the message to be populated on the initial screen of IW31, when the user enters the work order type (for ex. PM02), then system should through the message that " Order can not be created without associated Notification ".

 

Can you please tell me when this message will be shown? Thank you.

 

Regards,

PM Consultant

Re: Upload and update Master Data via VBA

$
0
0

Hi Vadim,

We have a download requirement on the backend without asking any popup to user so it is usefull for us.

 

For password i didint check methods but last time we used password breaker;

Sub PasswordBreaker()
  
   Dim i As Integer, j As Integer, k As Integer
   Dim l As Integer, m As Integer, n As Integer
   Dim i1 As Integer, i2 As Integer, i3 As Integer
   Dim i4 As Integer, i5 As Integer, i6 As Integer
   On Error Resume Next
   For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
   For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
   For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
   For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
     
        
  ActiveSheet.Unprotect Chr(i) & Chr(j) & Chr(k) & _
       Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
       Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
   If ActiveSheet.ProtectContents = False Then
       MsgBox "One usable password is " & Chr(i) & Chr(j) & _
           Chr(k) & Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
           Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
    ActiveWorkbook.Sheets(1).Select
    Range("a1").FormulaR1C1 = Chr(i) & Chr(j) & _
           Chr(k) & Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
           Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
        Exit Sub
   End If
   Next: Next: Next: Next: Next: Next
   Next: Next: Next: Next: Next: Next


End Sub

for the program i am using .net reflector . Decompiling is good to see some hardcoded values in the backend, i tried downloading many times but it didint work, after checking metods i found what value to send .

Also with some alternate methods you can modify dll ehehe.

Re: SAP BW 3.10 UPGRADE TO 7.0 Process

$
0
0

Hi Prakash.

 

Using SPAM /SAINT upgrade the stack from current level to target NW 7.0 with Support package level 14 & above.

 

Regards

SS

Re: SAP FSCM-SCM


Re: Need Help regarding SAP Note 2004321

$
0
0

Hi Aleksey,

 

I didnt understand(sorry for that)

 

This is what presently I am getting in the system.

Luxembourg.PNG

 

what they want is

Start of the navigation pathAccountingNext navigation stepFinancial AccountingNext navigation stepGeneral LedgerNext navigation stepReportingNext navigation stepStandard Audit File for Tax Purpose (SAFT)Next navigation stepSAFT SettingsNext navigation stepCountry-Specific SettingsNext navigation stepLuxembourgEnd of the navigation path:


which means Under Reporting option it should display

Standard Audit File for Tax Purpose (SAFT)Next navigation stepSAFT SettingsNext navigation stepCountry-Specific SettingsNext navigation stepLuxembourgEnd of the navigation path:


But as of now , it is showing country list under Reporting option.


In /se80 I am getting the below thing:

se80 ID-FI-SAFT.PNG


Now , where to do all changes to meet client requirements?

Re: holiday calender

Re: SAP PA - JDBC Writer Problem

$
0
0

No, I am just looking for alternate routes so that you can realize your business case (which I am trying to guess ). As I mentioned before, status updates on the support ticket will come via the support channel. So please monitor this one in priority. As per my understanding, this is under investigation.

Re: Attach PDF of form trigger while selecting correspondence type in FB03

$
0
0

Hi,

 

try to search information about : ArchivLink / GOS

 

it's not so complex

 

 

regards

Fred

Log dump in Process chain alert

$
0
0

Hello Experts,

 

We have setup process chain alert for few PC with a standard message.

 

However apart from messgae, we are receiving log in the mail.

 

How to avoid log and receive only message mentioned ?

 

 

EHP2 FOR SAP SCM 7.0

 

Thanks in Advance

Viewing all 2803 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>